home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-09-24 | 722 b | 29 lines | [TEXT/KAHL] |
- //|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- //| CHyperScrollBar
- //|
- //| This is the interface to a pane containing a number which reflects
- //| the setting of a scroll bar
- //|______________________________________________________________________
-
- #include <CScrollBar.h>
-
- class CHyperScrollBar : public CScrollBar
- {
-
- Boolean fWrap; // TRUE if the bar should wrap-around
-
- public:
-
- void IHyperScrollBar(CView *enclosure, CBureaucrat *supervisor,
- Orientation orientation, short length,
- short horiz, short vert, Boolean wrap);
- void Dispose(void);
-
- void SetValue(short value);
-
- void DoClick(Point hitPt, short modifierKeys, long when);
-
- void TrackThumb(void);
-
- };
-